Special:Debug hasn't been active in a while and was long deprecated and not
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 21 Apr 2005 10:20:26 +0000 (10:20 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 21 Apr 2005 10:20:26 +0000 (10:20 +0000)
usable on a default install. Removing. (It's just a phpinfo() wrapper
anyway.)

includes/SpecialDebug.php [deleted file]

diff --git a/includes/SpecialDebug.php b/includes/SpecialDebug.php
deleted file mode 100644 (file)
index cc82c0a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- * Let developpers receive the full phpinfo output
- * @package MediaWiki
- * @subpackage SpecialPage
- */
-/**
- *
- */
-function wfSpecialDebug() {
-       global $wgUser, $wgOut;
-
-       if ( ! $wgUser->isAllowed('siteadmin') ) {
-               $wgOut->developerRequired();
-               return;
-       }
-       phpinfo();
-}